home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000413_news@columbia.edu _Thu Feb 1 18:40:29 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id SAA13347 for <kermit.misc@watsun>; Thu, 1 Feb 1996 18:40:27 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id SAA00914 for kermit.misc@watsun; Thu, 1 Feb 1996 18:40:24 -0500 (EST)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!howland.reston.ans.net!newsfeed.internetmci.com!news.sprintlink.net!fish.pond.com!usenet
  5. From: "Joseph B. Gill" <gilljb@gmis.com>
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Help dialing into UNIX (Sun OS)
  8. Date: Thu, 01 Feb 1996 09:05:25 -0500
  9. Organization: GMIS, Inc.
  10. Lines: 60
  11. Message-ID: <3110C8A5.6527@gmis.com>
  12. NNTP-Posting-Host: pacific-12.vf.pond.com
  13. Mime-Version: 1.0
  14. Content-Type: text/plain; charset=us-ascii
  15. Content-Transfer-Encoding: 7bit
  16. X-Mailer: Mozilla 2.0b6a (Win16; I)
  17.  
  18. Hello,
  19.  
  20. Has anyone been successful dialing into a Sun OS system?  I'v been trying with mixed result.  
  21. I've tried the example in the USING C-KERMIT
  22. manual with;
  23.  
  24.     set terminal byte 7
  25.     set command byte 7
  26.     set parity none
  27.     set handshake none
  28.     set flow xon/xoff
  29.     set case on
  30.  
  31. I can connect to the UNIX machine and I get to the login prompt
  32. and enter my username but at that point it just waits at the Password:
  33. prompt.
  34.  
  35. Any help would be greatly appriciated.
  36.  
  37. Thanks,
  38.  
  39. Joe Gill
  40. E-mail: gilljb@gmis.com
  41.  
  42.  
  43. DEFINE \%p T,       ; Dialing prefix - my modem requires the T as in ATDT comment               
  44. DEFINE \%p T9,
  45. DEFINE \%n 5551212 ; ISP dial-in number - Phl
  46. DEFINE \%m HAYES       ; Modem type
  47. DEFINE \%l LTA4:       ; Serial line 
  48. DEFINE \%u myusername  ; Username
  49. DEFINE \%x mypassword  ; Password
  50. set modem \%m
  51. set line \%l
  52. set speed 2400
  53. set terminal byte 7
  54. set command byte 7
  55. set handshake none
  56. set flow xon/xoff
  57. :Redial
  58. set dial display on
  59. set dial speed-matching on
  60. set case on
  61. dial \%p\%n
  62. input 10 wanda login:                    ; Wait for login prompt from FishNet 
  63. if success goto dologin
  64. hangup
  65. pause 10
  66. goto Redial
  67. :dologin
  68. output \%u\13                         ; Send user id
  69. input 5 Password:                     ; Get password prompt if fail goto dologin
  70. output \%x\13                         ; Send password 
  71. define \%x junk                       ; Erase password pause 5
  72. output who\13
  73. output ls\13
  74. output logout\13
  75. pause 2
  76. hangup
  77. exit